home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Development Tools & Languages / Macintosh Common Lisp Related / interfaces / PInterface Translator / PInterfaces / Retrace.p < prev    next >
Encoding:
Text File  |  1993-09-16  |  1.3 KB  |  56 lines  |  [TEXT/MPS ]

  1. {
  2. Created: Sunday, January 6, 1991 at 11:06 PM
  3.     Retrace.p
  4.     Pascal Interface to the Macintosh Libraries
  5.  
  6.         Copyright Apple Computer, Inc.    1985-1990
  7.         All rights reserved
  8. }
  9.  
  10.  
  11. {$IFC UNDEFINED UsingIncludes}
  12. {$SETC UsingIncludes := 0}
  13. {$ENDC}
  14.  
  15. {$IFC NOT UsingIncludes}
  16.     UNIT Retrace;
  17.     INTERFACE
  18. {$ENDC}
  19.  
  20. {$IFC UNDEFINED UsingRetrace}
  21. {$SETC UsingRetrace := 1}
  22.  
  23. {$I+}
  24. {$SETC RetraceIncludes := UsingIncludes}
  25. {$SETC UsingIncludes := 1}
  26. {$IFC UNDEFINED UsingTypes}
  27. {$I $$Shell(PInterfaces)Types.p}
  28. {$ENDC}
  29. {$IFC UNDEFINED UsingOSUtils}
  30. {$I $$Shell(PInterfaces)OSUtils.p}
  31. {$ENDC}
  32. {$SETC UsingIncludes := RetraceIncludes}
  33.  
  34. FUNCTION GetVBLQHdr: QHdrPtr;
  35.     INLINE $2EBC,$0000,$0160;
  36. FUNCTION SlotVInstall(vblBlockPtr: QElemPtr;theSlot: INTEGER): OSErr;
  37.     INLINE $301F,$205F,$A06F,$3E80;
  38. FUNCTION SlotVRemove(vblBlockPtr: QElemPtr;theSlot: INTEGER): OSErr;
  39.     INLINE $301F,$205F,$A070,$3E80;
  40. FUNCTION AttachVBL(theSlot: INTEGER): OSErr;
  41.     INLINE $301F,$A071,$3E80;
  42. FUNCTION DoVBLTask(theSlot: INTEGER): OSErr;
  43.     INLINE $301F,$A072,$3E80;
  44. FUNCTION VInstall(vblTaskPtr: QElemPtr): OSErr;
  45.     INLINE $205F,$A033,$3E80;
  46. FUNCTION VRemove(vblTaskPtr: QElemPtr): OSErr;
  47.     INLINE $205F,$A034,$3E80;
  48.  
  49.  
  50. {$ENDC}    { UsingRetrace }
  51.  
  52. {$IFC NOT UsingIncludes}
  53.     END.
  54. {$ENDC}
  55.  
  56.